/******************************************************************************* * Copyright (c) 2000, 2008 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ package org.eclipse.jdt.ui.tests.refactoring.reorg; import org.eclipse.ltk.core.refactoring.participants.RenameRefactoring; import org.eclipse.jdt.core.ICompilationUnit; import org.eclipse.jdt.core.IPackageFragment; import org.eclipse.jdt.core.IType; import org.eclipse.jdt.internal.corext.refactoring.rename.RenameTypeProcessor; public class AbstractRenameTypePerfTest extends RepeatingRefactoringPerformanceTestCase { public AbstractRenameTypePerfTest(String name) { super(name); } protected void doExecuteRefactoring(int numberOfCus, int numberOfRefs, boolean measure) throws Exception { ICompilationUnit cunit= generateSources(numberOfCus, numberOfRefs); IType type= cunit.findPrimaryType(); RenameTypeProcessor processor= new RenameTypeProcessor(type); processor.setNewElementName("B"); executeRefactoring(new RenameRefactoring(processor), measure); } private ICompilationUnit generateSources(int numberOfCus, int numberOfRefs) throws Exception { IPackageFragment definition= fTestProject.getSourceFolder().createPackageFragment("def", false, null); StringBuffer buf= new StringBuffer(); buf.append("package def;\n"); buf.append("public class A {\n"); buf.append("}\n"); ICompilationUnit result= definition.createCompilationUnit("A.java", buf.toString(), false, null); IPackageFragment references= fTestProject.getSourceFolder().createPackageFragment("ref", false, null); for(int i= 0; i < numberOfCus; i++) { createReferenceCu(references, i, numberOfRefs); } return result; } private void createReferenceCu(IPackageFragment pack, int index, int numberOfRefs) throws Exception { StringBuffer buf= new StringBuffer(); buf.append("package " + pack.getElementName() + ";\n"); buf.append("import def.A;\n"); buf.append("public class Ref" + index + " {\n"); for (int i= 0; i < numberOfRefs - 1; i++) { buf.append(" A field" + i +";\n"); } buf.append("}\n"); pack.createCompilationUnit("Ref" + index + ".java", buf.toString(), false, null); } }